rank | frequency | n-gram |
---|---|---|
1 | 7069 | -র |
2 | 3951 | -ে |
3 | 2640 | -া |
4 | 2069 | -ন |
5 | 1994 | -ি |
rank | frequency | n-gram |
---|---|---|
1 | 3510 | -ের |
2 | 1496 | -ার |
3 | 1036 | -কে |
4 | 875 | -য় |
5 | 610 | -তে |
rank | frequency | n-gram |
---|---|---|
1 | 553 | -দের |
2 | 548 | -নের |
3 | 401 | -রের |
4 | 401 | -ায় |
5 | 244 | -য়া |
rank | frequency | n-gram |
---|---|---|
1 | 182 | -ভাবে |
2 | 172 | -ারের |
3 | 166 | -িয়া |
4 | 164 | -গুলো |
5 | 158 | -ানের |
rank | frequency | n-gram |
---|---|---|
1 | 85 | -িয়ার |
2 | 63 | -গুলোর |
3 | 54 | -রিয়া |
4 | 52 | -যালয় |
5 | 51 | -ত্রের |
The tables show the most frequent letter-N-grams at the ending of words for N=1…5. Everything runs in parallel to 2.2.5 Most frequent word beginnings. The aim is suffix detection instead of affix detection.
For N=3:
SELECT @pos:=(@pos+1), xx.* from (SELECT @pos:=0) r, (select count(*) as cnt ,concat("-", right(word,3)) FROM words WHERE w_id>100 group by right(word,3) order by cnt desc) xx limit 5;
2.2.5 Most frequent word beginnings